home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacApp Release 10 / MacApp Release 10 - HD Ready / Examples / Calc / CalcUtilities.r < prev    next >
Encoding:
Text File  |  1996-04-03  |  1.5 KB  |  53 lines  |  [TEXT/MPS ]

  1. /******************************************************************************/
  2. /*                                                                                                        */
  3. /*    File:            CalcUtilities.r                                                                */
  4. /*                                                                                                        */
  5. /*    Description:    Separately compiled resources for Calc.                           */
  6. /*                                                                                                        */
  7. /*                                                                                                        */
  8. /*    Copyright © 1985-96 by Apple Computer, Inc. All rights reserved.              */
  9. /******************************************************************************/
  10.  
  11. /* • Auto-Include the requirements for this source */
  12.  
  13. #ifndef __TYPES_R__
  14. #include "Types.r"
  15. #endif
  16.  
  17.  
  18. #define kColumnSizingCursor    256        /* ID of the column sizing cursor resource */
  19. #define kRowSizingCursor        257        /* ID of the row sizing cursor resource */
  20.  
  21.  
  22.  
  23. /*--------------------------------------------------------------------------------
  24.  Cursors
  25. --------------------------------------------------------------------------------*/
  26. /* Row Sizing Cursor */
  27. resource 'CURS' (kRowSizingCursor,
  28. #if qNames
  29. "RowSizing",
  30. #endif
  31.     purgeable) {
  32.     $"0000 0080 0140 0220 0630 0220 0220 3FFE"
  33.     $"3FFE 3FFE 0220 0220 0630 0220 0140 0080",
  34.     $"0000 0080 0140 0220 0630 0220 0220 3FFE"
  35.     $"3FFE 3FFE 0220 0220 0630 0220 0140 0080",
  36.     {8, 8}
  37. };
  38.  
  39. /* Column Sizing Cursor */
  40. resource 'CURS' (kColumnSizingCursor,
  41. #if qNames
  42. "ColSizing",
  43. #endif
  44.     purgeable) {
  45.     $"0000 0000 0380 0380 0380 0BA0 1FF0 2388"
  46.     $"4384 2388 1FF0 0BA0 0380 0380 0380 0000",
  47.     $"0000 07C0 07C0 07C0 0FE0 1FF0 3FF8 7FFC"
  48.     $"FFFE 7FFC 3FF8 1FF0 0FE0 07C0 07C0 07C0",
  49.     {8, 7}
  50. };
  51.  
  52.  
  53.